home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / CTALK / CTALK_RE.ADM < prev    next >
Text File  |  1990-08-09  |  1KB  |  22 lines

  1.                                           CTalk readme
  2.  
  3.     Ctalk is a class for use with THINK C 4.0x.  It provides access to speech on Macintosh.  One needs MacinTalk file in System folder in order for CTalk to work.  One can ftp it from rascal.ics.utexas.edu.
  4.  
  5.     Original version of MacinTalk access for THINK C is by Peter Kaplan.  I╒d like to thank him for SpeechLib.asm.  He made some mistakes, so that an application would hung if there is no MacinTalk in System folder. One mistake is
  6.  
  7.        if(speechFlag=TRUE) {do talking}
  8.  
  9.     should be
  10.  
  11.       if(speeachFlag==TRUE) {do talking}
  12.  
  13.    Besides CTalk is a class.  ( if you don╒t like that then just remove class definition from Ctalk.h making instance variables statics ones and remove all occurrences of ╥CTalk::╙ )
  14.  
  15.    Methods are easy to learn and are documented in the file CTalk.c.  Sample project is included to show how to use CTalk.
  16.  
  17. Note: CTalk is distributed as CreditWare.  If you are using it then give me a little credit in About box and send me your application.  (but if you really like it then you might consider a postcard...)
  18.  
  19. Enjoy
  20.  
  21. Dmitri <dmitri@bolvan.ph.utexas.edu>
  22.